#e
#Title[ʏe02]
#Text[]
#Player[FREE]
#ScriptVersion[2]

script_enemy_main {
	#include_function ".\lib\lib_anime_tewi.txt"
	#include_function ".\boss.txt"
	let csd		=GetCurrentScriptDirectory;
	let shotData	=csd ~ ".\shot.txt";
	let imgBoss	=csd ~ "img\dot_tewi.png";
	let imgBG1	=csd ~ "img\maho1.png";
	let imgBG2	=csd ~ "img\maho2.png";
	let xIni	=GetCenterX;
	let yIni	=GetClipMinY + 100;
	let BGn		=0;
	@Initialize {
        SetLife(1200);
	SetTimer(60);
	InitializeAction();
	LoadUserShotData(shotData);
        LoadGraphic(imgBoss);
	LoadGraphic(imgBG1);
	LoadGraphic(imgBG2);
        TMain;
	}

	@MainLoop {
	BGn++;
        SetCollisionA(GetX, GetY, 32);
        SetCollisionB(GetX, GetY, 16);
	yield;
	}

	@DrawLoop {
	SetColor(255,255,255);
	SetGraphicScale(1,1);
	SetGraphicAngle(0,0,0);
	SetAlpha(225);
	DrawBoss(imgBoss);
	BG;
	}
function wait(w) {
    loop(w) { yield; }
}
    task TMain {
        yield;
standBy;
SetDamageRate(100,100);
moveA;
shotB;
}

task shotB{
let A=1;
loop(60){
wait(5);
wayShot(GetX,GetY,4,0,A/2,A,90,46,20);
A++;
}
}

function wayShot(
	let x,
	let y,
	let speed,
	let angle,
	let interval,
	let way,
	let distance,
	let graphic,
	let delay

){
	let ANGLE = - ((way - 1)*interval)/2 + angle;
	while(ANGLE<((way - 1)*interval)/2 + angle + 0.1){

		CreateShot01(x + cos(ANGLE)*distance, y + sin(ANGLE)*distance, speed, ANGLE, graphic, delay);

	ANGLE += interval;
	}
}


   task moveA {
        let wMove =240;
	loop{	
	SetAction(ACT_MOVE,wMove);
        moveToPlayer(rand(40, 120), rand(-40, 40), wMove,
                     GetClipMinX + 48, GetClipMinY +  50,
                     GetClipMaxX - 48, GetClipMinY + 120);
        wait(wMove);
	}
	}

    sub standBy {
        let wIni = 120;

        SetMovePosition02(xIni, yIni, wIni);

        SetInvincibility(wIni);
        wait(wIni);
    }

    function moveToPlayer(xMove, yAdd, frame, left, top, right, bottom) {
        let x;
        let y;
        if(GetPlayerX < GetX) {
            x = GetX - xMove;
            if(x < left) {
                x = GetX + xMove;
            }
        } else {
            x = GetX + xMove;
            if(right < x) {
                x = GetX - xMove;
            }
        }
        y = GetY + yAdd;
        if(y < top) {
            y = top;
        } else if(bottom < y) {
            y = bottom;
        }

        SetMovePosition02(x, y, frame);
    }
}

}